Skip to content

Instantly share code, notes, and snippets.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; 作者: 李继刚
;; 日期: 2025-11-12
;; 剑名: 圆桌讨论
;; 剑意: 构建一个以“求真”为目标的结构化对话框架。该框架由一位极具洞察力的主持人
;; 进行引导,邀请代表不同思想的“典型代表人物”进行一场高强度的、即时响应式的
;; 深度对话。主持人将在每轮总结时生成视觉化的思考框架(ASCII Chart),通过
;; “主动质询” 与“协同共建”,对用户提出的议题进行协同探索,最终生成深刻的、
;; 结构化的知识网络。
@mberman84
mberman84 / all_files.md
Created February 24, 2026 21:09
Matt's Markdown Files

OpenClaw: System Prompt File Templates

Generalized versions of all root .md files used by OpenClaw. These files are loaded into the agent's system prompt on every request (except MEMORY.md which is conditional).

Copy these as starting points and customize for your own setup. Replace <placeholders> with your values.


AGENTS.md

@mberman84
mberman84 / prompts.md
Last active March 11, 2026 09:28
Prompts

OpenClaw: Extracted Prompts (Generalized)

22 copy/paste-ready prompts for building your own AI agent system. Each prompt builds a functional system or implements a proven best practice you can hand to an AI coding assistant.

Replace placeholders like <your-workspace>, <your-messaging-platform>, and <your-model> with your own values.


1. Personal CRM

"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@wojukasz
wojukasz / keybindings.json
Last active March 11, 2026 09:24
⚡VSCode + WhichKey + Vim keybindings | Works with VScode forks like AntiGravity, Cursor, etc | Copy-paste ready config | 5-min setup | Full version: https://github.com/wojukasz/VimCode
[
// ╔══════════════════════════════════════════════════════════════════════════════════╗
// ║ VSCODE VIM LAZYVIM KEYBINDINGS ║
// ║ Modifier Key Bindings (Ctrl, Alt, Shift) ║
// ╚══════════════════════════════════════════════════════════════════════════════════╝
//
// This file contains keybindings that use modifier keys (Ctrl, Alt, Shift) and special
// characters that need VSCode's key binding system (not Vim's).
//
// IMPORTANT: DO NOT put space-leader bindings here (<leader>...)
@franz-josef-kaiser
franz-josef-kaiser / iso_639-2.json
Created January 20, 2013 22:55
ISO 639-2 JSON file that contains different international as well as local names for languages. The file is sorted by the ISO 639-2 language codes
{
"aar":
{
"int":["Afar"],
"native":["Afaraf"]
},
"aa":
{
"int":["Afar"],
"native":["Afaraf"]
# The Hoijof Process
The "Hoijof Process" is a structured, documentation-first, and AI-friendly software development methodology designed to successfully deliver complex projects systematically with high test coverage and transparent decision-making. It is tailored to handle large context applications and maximize the efficiency of AI coding assistants.
## 1. Phased Master Roadmaps
Work is organized into major, themed Phases (e.g., "Phase 2: SaaS & Auth", "Phase 3: Scale & Intelligence"). Each phase relies on a comprehensive roadmap document (`plans/PhaseX/phaseX-roadmap.md`):
- **Goal & Status:** The high-level objective and completion status for the entire phase.
- **Task Tracking:** Feature lists categorized with specific tags like Priorities (P1, P2...), Improvements (I1, I2...), and Backlog/Moonshots (B1, B2...).
- **Milestone Details:** A deep-dive into each feature's specific goal, dependencies, and complexity rating.
- **Dependency Graph:** A visual hierarchy mapped in plain text to determine stric
@TiffanyCSherwin
TiffanyCSherwin / Hollow Knight.md
Created September 23, 2025 07:46
Hollow Knight APK v1.5.78.11833 (English Version) Download Free Android
image

Hollow Knight is one of the most beloved indie games of all time, and now you can experience it on mobile through the Hollow Knight APK. This version lets you dive into the mysterious world of Hallownest anywhere you go, right from your phone. Whether you’re a long-time fan or new to the game, the APK brings the same thrilling adventure, smooth combat, and hauntingly beautiful art style to your pocket.

What Is Hollow Knight APK?

Hollow Knight APK is the unofficial Android port of the original PC and console game. Instead of playing on a computer, you can install this APK file and enjoy the full game experience on your mobile device. It includes the same content, updates, and expansions as the main release, making it perfect for players who prefer gaming on the go.

Gameplay Overview

@ih2502mk
ih2502mk / list.md
Last active March 11, 2026 09:17
Quantopian Lectures Saved
@jomonjohnn
jomonjohnn / signal_handling.c
Last active March 11, 2026 09:16
Signal handling in Linux with signalfd #c #Linux #Signals
/* Signal handling with signalfd()
* Original Source : http://741mhz.com/signal-handler/
*/
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/signalfd.h>
#include <unistd.h>